home *** CD-ROM | disk | FTP | other *** search
/ El Mac 9 / El Mac 9.iso / Shareware / Applications / Charting Coach v1.5 / Charting Coach v1.dxr / 00581.ls < prev    next >
Encoding:
Text File  |  1996-04-08  |  503 b   |  27 lines

  1. on enterFrame
  2.   if the visible of sprite 6 then
  3.     if the mouseLine > 0 then
  4.       hilite line the mouseLine of field "PickDay"
  5.     end if
  6.   end if
  7.   if rollOver(12) then
  8.     puppetSprite(6, 1)
  9.     set the visible of sprite 6 to 0
  10.     puppetSprite(6, 0)
  11.     go("nextDay")
  12.   else
  13.     if rollOver(11) then
  14.       puppetSprite(6, 1)
  15.       set the visible of sprite 6 to 0
  16.       puppetSprite(6, 0)
  17.       go("prevDay")
  18.     else
  19.       go("daily cal")
  20.     end if
  21.   end if
  22. end
  23.  
  24. on exitFrame
  25.   go(the frame)
  26. end
  27.